In [2]:
%%writefile README.md
sdcdddccdccccdcccccccccccccccccccddddddddd


Overwriting README.md

In [3]:
!cat README.md


sdcdddccdccccdcccccccccccccccccccddddddddd

In [6]:
%%writefile index.html
<!DOCTYPE html>
<html>
<head>
<title>My website</title>
</html>


Writing index.html

saving to online


In [7]:
%%bash
git add --all :/
git commit -a -m 'added readme'
git push origin master


[master d1c9087] added readme
 2 files changed, 57 insertions(+), 3 deletions(-)
 create mode 100644 index.html
Warning: Permanently added the RSA host key for IP address '192.30.252.130' to the list of known hosts.
To git@github.com:ciire/ciire.github.io.git
   a9c52e6..d1c9087  master -> master

In [ ]: